home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat4 / freq.4 < prev    next >
Text File  |  1999-09-16  |  867b  |  67 lines

  1.  
  2.  
  3.  
  4. FREQ(G)                        Scilab Function                        FREQ(G)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   freq - frequency response
  13.  
  14. CALLING SEQUENCE
  15.   [x]=freq(A,B,C [,D],f)
  16.   [x]=freq(NUM,DEN,f)
  17.  
  18. PARAMETERS
  19.  
  20.   A, B, C, D     :  real matrices of respective dimensions nxn, nxp, mxn,
  21.                  mxp.
  22.  
  23.   NUM,DEN        : polynomial matrices of dimension mxp
  24.  
  25.   x              : real or complex matrix
  26.  
  27. DESCRIPTION
  28.   x=freq(A,B,C [,D],f) returns a real or complex mxp*t matrix such that:
  29.  
  30.   x(:,k*p:(k+1)*p)= C*inv(f(k)*eye-A)*B + D.
  31.  
  32.   Thus, for f taking values along the imaginary axis or on the unit circle x
  33.   is the continous or discrete time frequency response of (A,B,C,D).
  34.  
  35.  
  36.   x=freq(NUM,DEN,f) returns a real or complex matrix x such that columns
  37.   k*(p-1)+1 to k*p of x contain the matrix NUM(f(k))./DEN(f(k))
  38.  
  39. SEE ALSO
  40.   repfreq, horner.
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.